00001 #ifndef FIXEDOBJECT_H_ 00002 #define FIXEDOBJECT_H_ 00003 00010 class FixedObject 00011 { 00012 private: 00013 float position[3]; 00014 public: 00015 FixedObject(); 00016 void setPosition(float x, float y, float z); 00017 float *getPosition(); 00018 }; 00019 00020 #endif /* FIXEDOBJECT_H_ */